home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / XQ MS Setup Default Names.xpl < prev    next >
Text File  |  2000-11-12  |  1KB  |  48 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="2"
  4. "UIPATH"="System\User Data"
  5. "NAME"="MS Setup Default Names"
  6. "VERSION"="1.11"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Name"
  9. "TEXT 2"="Company"
  10. "DESCRIPTION 1"="If you install a program from Microsoft, SETUP.EXE searches for this two values and uses them as default values for your name and your company."
  11. "AUTHOR"="Xteq Systems"
  12. "CONTACTURL"="http://www.xteq.com"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"=" "
  15.  
  16.  
  17.  
  18. sPath="HKCU\Software\Microsoft\MS Setup (ACME)\User Info\"
  19. Sub Plugin_Initialize 
  20.  if RegPathExists(sPath) then
  21.   s=RegReadValue(sPath & "DefName")
  22.   SetUIElement 1,s
  23.  
  24.   s=RegReadValue(sPath & "DefCompany")
  25.   SetUIElement 2,s
  26.  else
  27.   Disable
  28.  end if
  29. End Sub
  30.  
  31. Sub Plugin_CheckData(ElementIndex)
  32. End Sub
  33.  
  34. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  35.  s=GetUIElement(1)
  36.  Call RegWriteValue(sPath & "DefName",s,1)
  37.  
  38.  s=GetUIElement(2)
  39.  Call RegWriteValue(sPath & "DefCompany",s,1)
  40. End Sub
  41.  
  42.  
  43. Sub Plugin_Terminate 
  44. End Sub
  45.  
  46.  
  47.  
  48.